home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / Harvest C / Source Code / CStringTable.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-02  |  685 b   |  28 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CStringTable.h
  3.  
  4.         Interface for StringTable class.
  5.         
  6.     SUPERCLASS = CArrayPane
  7.     
  8.     Copyright © 1991 Symantec Corporation. All rights reserved.
  9.     
  10.  
  11.  ******************************************************************************/
  12.  
  13. #define _H_CStringTable
  14.  
  15. #include "CArrayPane.h"
  16.  
  17. class CStringTable : public CArrayPane
  18. {
  19. public:
  20.     void IStringTable( CView *anEnclosure, CBureaucrat *aSupervisor,
  21.                             short aWidth, short aHeight,
  22.                             short aHEncl, short aVEncl,
  23.                             SizingOption aHSizing, SizingOption aVSizing);
  24.     
  25.     virtual void GetCellText( Cell aCell, short availableWidth, StringPtr itsText);
  26.  
  27.  
  28. };